Convert temperatures from any of Celsius, Fahrenheit, Kelvin, and Rankine to the other three. A switch is required to indicate the units the given value is in.<br/>
<div class="helpboxDescLabels">Switches:</div>
<table class="helpboxDescTable">
<tr><td>/celsius, /centigrade</td><td> - </td><td>Convert the given Celsius value to Fahrenheit, Kelvin, and Rankine.</td></tr>
<tr><td>/fahrenheit</td><td> - </td><td>Convert the given Fahrenheit value to Celsius, Kelvin, and Rankine.</td></tr>
<tr><td>/kelvin</td><td> - </td><td>Convert the given Kelvin value to Celsius, Farenheit, and Rankine.</td></tr>
<tr><td>/rankine</td><td> - </td><td>Convert the given Rankine value to Celsius, Farenheit, and Kelvin.</td></tr>
</table>
<div class="helpboxDescLabels">Examples:</div>
<table class="helpboxDescTable">
<tr><td>temp 22 /c</td></tr>
</table>
</description>
<category>Functions</category>
<contributor>Ryan Edwards, Volker Wick, Steven Ehrbar</contributor>
<script><![CDATA[
function temp(q)
{
var args = parseArgs(q, "celsius, centigrade, fahrenheit, kelvin, rankine");